home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wil4c10.zip / MAIL16._M_ < prev    next >
Text File  |  1997-07-26  |  841b  |  37 lines

  1. #
  2. # Microsoft makefile for MAIL [Win16]
  3. #
  4. # To use: "NMAKE MAIL16._M_"
  5. #
  6.  
  7. CCFLAGS = -c -AS -G2sw -Oas -Zp
  8.  
  9. mail.exe: mail.res mail.obj mail.def wil16.lib mail16._M_  \
  10.            about.obj async.obj paint.obj readini.obj str.obj unique.obj
  11.     link /NOD /NOE mail about async paint readini.obj str unique,,,libw slibcew wil16 winsock,mail.def;
  12.     rc mail.res
  13.  
  14. mail.res: mail.rc
  15.     rc -r mail.rc
  16.  
  17. about.obj: about.c about.h
  18.    cl $(CCFLAGS)  about.c
  19.  
  20. async.obj: async.c async.h
  21.    cl $(CCFLAGS)  async.c
  22.  
  23. paint.obj: paint.c paint.h wil.h
  24.     cl $(CCFLAGS)  paint.c
  25.  
  26. readini.obj: readini.c readini.h wil.h
  27.     cl $(CCFLAGS)  readini.c
  28.  
  29. str.obj: str.c str.h wil.h
  30.     cl $(CCFLAGS)  str.c
  31.  
  32. unique.obj: unique.c unique.h wil.h
  33.     cl $(CCFLAGS)  unique.c
  34.  
  35. mail.obj: mail.c wil.h
  36.     cl $(CCFLAGS)  mail.c
  37.